From: Keir Fraser Date: Sat, 8 Jan 2011 09:14:23 +0000 (+0000) Subject: x86: Free per-cpu area for offline cpu via RCU. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~10965 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22%22?a=commitdiff_plain;h=1be584b57a4657d680e5551dc253ce164f06b4ac;p=xen.git x86: Free per-cpu area for offline cpu via RCU. This allows other CPUs to reference per-cpu areas with less strict locking. In particular, timer.c access a per-cpu lock with reference to a per-timer cpu field which it accesses with no synchronisation. One subtlety is that this prevents us bringing a cpu back online until the RCU work is completed. In this case we return EBUSY and the tool stack can report the (unlikely) error, or retry, as it sees fit. Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/percpu.c b/xen/arch/x86/percpu.c index ea82647b42..e5450248ad 100644 --- a/xen/arch/x86/percpu.c +++ b/xen/arch/x86/percpu.c @@ -3,6 +3,7 @@ #include #include #include +#include unsigned long __per_cpu_offset[NR_CPUS]; #define INVALID_PERCPU_AREA (-(long)__per_cpu_start) @@ -19,7 +20,7 @@ static int init_percpu_area(unsigned int cpu) { char *p; if ( __per_cpu_offset[cpu] != INVALID_PERCPU_AREA ) - return 0; + return -EBUSY; if ( (p = alloc_xenheap_pages(PERCPU_ORDER, 0)) == NULL ) return -ENOMEM; memset(p, 0, __per_cpu_data_end - __per_cpu_start); @@ -27,13 +28,28 @@ static int init_percpu_area(unsigned int cpu) return 0; } -static void free_percpu_area(unsigned int cpu) +struct free_info { + unsigned int cpu; + struct rcu_head rcu; +}; +static DEFINE_PER_CPU(struct free_info, free_info); + +static void _free_percpu_area(struct rcu_head *head) { + struct free_info *info = container_of(head, struct free_info, rcu); + unsigned int cpu = info->cpu; char *p = __per_cpu_start + __per_cpu_offset[cpu]; free_xenheap_pages(p, PERCPU_ORDER); __per_cpu_offset[cpu] = INVALID_PERCPU_AREA; } +static void free_percpu_area(unsigned int cpu) +{ + struct free_info *info = &per_cpu(free_info, cpu); + info->cpu = cpu; + call_rcu(&info->rcu, _free_percpu_area); +} + static int cpu_percpu_callback( struct notifier_block *nfb, unsigned long action, void *hcpu) {